home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / ansi / math / asin.s < prev    next >
Encoding:
Text File  |  1994-11-23  |  193 b   |  15 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2.     .globl    _asin
  3. _asin:
  4.     fldl    4(%esp)
  5.     fld    %st(0)
  6.     fmulp
  7.     fld1
  8.     fsubp
  9.     fsqrt
  10.     fldl    4(%esp)
  11.     fxch    %st(1)
  12.     fpatan
  13.     ret
  14.  
  15.